home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / editors / emacs / emacs19t.rea < prev    next >
Encoding:
Text File  |  1993-11-03  |  1.1 KB  |  29 lines

  1. Hello all,
  2.  
  3.    This is to announce a quick little patch to emacs 19.19 that allows
  4. you to use open-network-stream over term.  This is handy if you use
  5. gopher or the World Wide Web from within emacs.
  6.    
  7.    The patches were extremely simple, but there is still one problem.
  8. If you try to open-network-stream when the term server is not running,
  9. it will exit emacs completely.  This is a problem with term because it
  10. calls exit() from within the connect_server() routine instead of just
  11. return(1).  If you feel like it you can change this behavior by
  12. editing the connect_server function in /usr/src/term/client.c.
  13.  
  14.     This also assumes that you have the /usr/src/term/client.a library
  15. in /usr/lib/libclient.a.  You can change the defines in
  16. emacs-19.19/src/s/linux.h to change this.
  17.  
  18.     To compile with TERM support, all you have to do is apply this
  19. patch (patch -p1 < emacs19.term), then compile (make all).
  20.  
  21.     To remove term support, just edit eacs-19.19/src/s/linux.h and
  22. remove the #define TERM line, then recompile.
  23.  
  24.     This has been submitted back to the FSF and rms says it will be
  25. merged into the next release.
  26.  
  27. Enjoy,
  28.     Bill P.
  29.